@charset "UTF-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 2rem;
}

.menu-board {
  background-color: #000;
  border: 10px solid #ffcc00;
  border-radius: 15px;
  max-width: 1200px;
  width: 90%;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
}

.menu-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.menu-column {
  flex: 1;
}

/* Section styling */
.section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #444;
}

.section h2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section p.sub {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
}

/* List styling */
ul {
  list-style: none;
  margin-top: 0.5rem;
}

li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 1rem;
  border-bottom: 0.5px solid #222;
}

li::after {
  content: attr(data-right);
  color: #ccc;
  font-size: 0.9rem;
}

.img-placeholder {
  margin-top: 1rem;
  text-align: center;
}

.img-placeholder img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

@media (max-width: 900px) {
  .menu-container {
    flex-direction: column;
    align-items: center;
  }

  .menu-column {
    width: 100%;
  }

  li {
    font-size: 0.95rem;
  }
}

.menu-board {
  background-color: #000;
  border: 10px solid #ffcc00;
  border-radius: 15px;
  max-width: 1200px;
  width: 90%;
  padding: 2rem;
  box-shadow: 0 0 40px #ffcc00, inset 0 0 10px #ffcc00;
}


/* === McDonald's Header === */
.menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #d20a0a 0%, #a00000 100%);
  border-bottom: 6px solid #ffcc00;
  text-align: center;
  z-index: 1000; 
  padding: 0.5rem 0 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden; 
}

.logo {
  width: 50px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-header h1 {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0.25rem 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.4rem 0;
  background: #b00000;
  border-top: 2px solid #ffcc00;
  border-bottom: 4px solid #ffcc00;
}

.menu-tabs button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
}

.menu-board {
  border: 8px solid #ffcc00;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.4);
  padding: 1rem;
  margin: 9rem auto 2rem;
  width: 90%;
  max-width: 1200px;
  background: #111;
}
